google.golang.org/grpc/internal/transport.Stream.headerChanClosed (field)

5 uses

	google.golang.org/grpc/internal/transport (current package)
		http2_client.go#L736: 		if atomic.CompareAndSwapUint32(&s.headerChanClosed, 0, 1) {
		http2_client.go#L911: 	if atomic.CompareAndSwapUint32(&s.headerChanClosed, 0, 1) {
		http2_client.go#L1380: 	initialHeader := atomic.LoadUint32(&s.headerChanClosed) == 0
		http2_client.go#L1513: 	if atomic.CompareAndSwapUint32(&s.headerChanClosed, 0, 1) {
		transport.go#L265: 	headerChanClosed uint32        // set when headerChan is closed. Used to avoid closing headerChan multiple times.